home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / ScoutSource / source / startup_defs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  3.3 KB  |  93 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28.  
  29.  
  30. #ifndef STARTUP_DEFS_H
  31. #define STARTUP_DEFS_H
  32.  
  33. #define PROGNAME        "Scout"
  34. #define RELEASEVERSION  "2"
  35. #define RELEASEREVISION "15"
  36. #define AUTHOR          "A. Gelhausen, R. Körber, T. Böckelmann"
  37. #define COPYRIGHT       "  ©1994-2002 " AUTHOR "  "
  38. #define DESCRIPTION     "Systemmonitor"
  39. #define EMAIL           "tboeckel@uni-paderborn.de"
  40. #define URL             "http://shredzone.home.pages.de"
  41.    
  42. #define MYLIBVERSION       37
  43.  
  44. struct Args {
  45.    LONG     *ToolPri;
  46.    STRPTR   Startup;
  47.    LONG     Iconified;
  48.    STRPTR   PortName;
  49.    STRPTR   IntervalTime;
  50.    LONG     *CpuDisplay;
  51.    STRPTR   Host;
  52.    STRPTR   User;
  53.    STRPTR   Password;
  54.    LONG     SingleWindows;
  55.    LONG     *SortLibrariesType;
  56.    LONG     *SortDevicesType;
  57.    LONG     *SortResourcesType;
  58.    LONG     *SortTasksType;
  59.    LONG     *SortPortsType;
  60.    LONG     *SortCommandsType;
  61.    LONG     *SortAssignsType;
  62.    LONG     *SortLocksType;
  63.    LONG     *SortCommoditiesType;
  64.    LONG     *SortScreenmodeType;
  65.    LONG     *SortClassesType;
  66.    STRPTR   Command;
  67. };
  68.  
  69. #define WBTEMPLATE      "TOOLPRI/K/N,STARTUP/K,ICONIFIED/S,PORTNAME/K," \
  70.                         "INTERVALTIME/K,CPUDISPLAY/K/N," \
  71.                         "HOST/K,USER/K,PASSWORD/K," \
  72.                         "SW=SINGLEWINDOWS/S," \
  73.                         "SORTLIBRARIESTYPE/K/N,SORTDEVICESTYPE/K/N,SORTRESOURCESTYPE/K/N," \
  74.                         "SORTTASKSTYPE/K/N,SORTPORTSTYPE/K/N,SORTCOMMANDSTYPE/K/N," \
  75.                         "SORTASSIGNSTYPE/K/N,SORTLOCKSTYPE/K/N,SORTCOMMODITIESTYPE/K/N," \
  76.                         "SORTSCREENMODETYPE/K/N,SORTCLASSESTYPE/K/N," \
  77.                         "C=COMMAND/K"
  78.  
  79. #define TEMPLATE        "TOOLPRI/K/N,STARTUP/K,ICONIFIED/S,PORTNAME/K," \
  80.                         "INTERVALTIME/K,CPUDISPLAY/K/N," \
  81.                         "HOST/K,USER/K,PASSWORD/K," \
  82.                         "SW=SINGLEWINDOWS/S," \
  83.                         "SORTLIBRARIESTYPE/K/N,SORTDEVICESTYPE/K/N,SORTRESOURCESTYPE/K/N," \
  84.                         "SORTTASKSTYPE/K/N,SORTPORTSTYPE/K/N,SORTCOMMANDSTYPE/K/N," \
  85.                         "SORTASSIGNSTYPE/K/N,SORTLOCKSTYPE/K/N,SORTCOMMODITIESTYPE/K/N," \
  86.                         "SORTSCREENMODETYPE/K/N,SORTCLASSESTYPE/K/N," \
  87.                         "C=COMMAND/K"
  88.  
  89. #define OPT_COUNT       sizeof(struct Args)/sizeof(LONG)
  90.  
  91.  
  92. #endif /* STARTUP_DEFS_H */
  93.